home *** CD-ROM | disk | FTP | other *** search
/ Trusted Irix /B 4.0.4 / Trusted-Irix B-4.0.1.iso / dist / eoe1.idb / usr / include / sys / fs / efs_clnt.h.z / efs_clnt.h
C/C++ Source or Header  |  1992-04-03  |  984b  |  31 lines

  1. #ifndef __SYS_EFS_CLNT_H__
  2. #define __SYS_EFS_CLNT_H__
  3.  
  4. /**************************************************************************
  5.  *                                      *
  6.  *          Copyright (C) 1990, Silicon Graphics, Inc.          *
  7.  *                                      *
  8.  *  These coded instructions, statements, and computer programs  contain  *
  9.  *  unpublished  proprietary  information of Silicon Graphics, Inc., and  *
  10.  *  are protected by Federal copyright law.  They  may  not be disclosed  *
  11.  *  to  third  parties  or copied or duplicated in any form, in whole or  *
  12.  *  in part, without the prior written consent of Silicon Graphics, Inc.  *
  13.  *                                      *
  14.  **************************************************************************/
  15. #ident "$Revision: 1.2 $"
  16.  
  17. /*
  18.  * EFS arguments to the mount system call.
  19.  */
  20. struct efs_args {
  21.     int    flags;        /* flags */
  22.     int    lbsize;        /* logical block size in bytes */
  23. };
  24.  
  25. /*
  26.  * EFS mount option flags
  27.  */
  28. #define    EFSMNT_LBSIZE    0x0001    /* set logical block size */
  29.  
  30. #endif /* !__SYS_EFS_CLNT_H__ */
  31.